home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / move / move.dir / 00017.ls < prev    next >
Encoding:
Text File  |  1999-03-05  |  1.1 KB  |  37 lines

  1. on exitFrame
  2.   global currentproject
  3.   if the mouseV > 531 then
  4.     set the locH of sprite 21 to -50
  5.     go("menu")
  6.   else
  7.     case rollOver() of
  8.       0:
  9.         set the member of sprite 102 to "arrowback"
  10.         set the member of sprite 103 to "arrowfwd"
  11.       100:
  12.         set the member of sprite 102 to "arrowback"
  13.         set the member of sprite 103 to "arrowfwd"
  14.       15:
  15.         set the member of sprite 102 to "arrowback"
  16.         set the member of sprite 103 to "arrowfwd"
  17.       19:
  18.         set the member of sprite 102 to "arrowback"
  19.         set the member of sprite 103 to "arrowfwd"
  20.       20:
  21.         set the member of sprite 102 to "arrowback"
  22.         set the member of sprite 103 to "arrowfwd"
  23.       25:
  24.         set the member of sprite 102 to "arrowback"
  25.         set the member of sprite 103 to "arrowfwd"
  26.       102:
  27.         set the member of sprite 102 to "arrowbackinv"
  28.         set the member of sprite 103 to "arrowfwd"
  29.       103:
  30.         set the member of sprite 103 to "arrowfwdinv"
  31.         set the member of sprite 102 to "arrowback"
  32.     end case
  33.     set the member of sprite 105 to line currentproject of field "project"
  34.   end if
  35.   go(the frame)
  36. end
  37.